home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Plus 2000 #1
/
Amiga Plus CD - 2000 - No. 1.iso
/
Tools
/
Misc
/
InstallerNG
/
examples
/
stringformat.installer
< prev
next >
Wrap
Text File
|
1999-12-03
|
372b
|
21 lines
(user expert)
(set @proceed-button "Really cool..."
@abort-button "This sucks !"
)
; demonstration of the string format function
(set text1 ("%s %s %s" ("Hello")
(" Wo%s" ("%sld " "r"))
"!"
)
)
(set text2 ("\n\nsome math: %ld * %ld = %ld" 30 40 (* 30 40)))
(exit ("%s%s" text1 text2) (quiet))
(welcome)